home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / allcc205.arc / CBIS.DAT < prev    next >
Text File  |  1989-03-22  |  3KB  |  73 lines

  1. EXAMPLE OF HOW TO LOAD CBIS OS HIGH
  2. ===================================
  3.  
  4. Before proceeding, please make sure that you have read the ALL
  5. Chargecard Manual, the General Network Installation file and the
  6. read.me file on disk.
  7.  
  8.      CBIS recommend that you first run NWSTART / ARGS
  9.      This should provide you with information and parameters for CBIS
  10.      The programs that can be loaded high are as follows :
  11.  
  12.      NC      .EXE      8K
  13.      NX      .EXE     19K to 28K in size
  14.      SHARE   .EXE      8K
  15.      NR      .EXE     42K
  16.      NS      .EXE     66K
  17.      UBRIDGE .EXE      9K
  18.      BRIDGE  .EXE     19K to 32K in size
  19.  
  20. Please remember that every system configuration is different and
  21. the example give is just a guide and should not be followed
  22. blindly !!!
  23.  
  24.      Example:
  25.      CONFIG.SYS:    
  26.  
  27.      DEVICE=ALLEMM4.SYS RAM FR=NONE X=aaaa-bbbb i=cccc-dddd
  28.  
  29.      N.B. -  If you are going to use EMS you should not have
  30.              FR=NONE as obviously you won't have an EMS page
  31.              frame. FR=NONE basically frees up another 64K of
  32.              memory that would normally be taken up by the EMS
  33.              pageframe.
  34.      
  35.           -  RAM is the parameter that causes the backfilling of
  36.              the free space between 640k and 1024k with memory
  37.              in 4k pages. If you are running VGA you could put
  38.              RAM=b000-b7ff to steal a bit more memory off your
  39.              video buffer.
  40.  
  41.           -  X=aaaa-bbbb where aaaa is the start address of the
  42.              ROM & RAM address on your network card and bbbb is
  43.              the end address. You should try and get ROM & RAM
  44.              to follow one another and then exclude that block
  45.           
  46.           -  i=cccc-dddd this only applies to Clone machines.
  47.              If you put i=f000-f7ff you may be able to steal
  48.              some more memory from the BIOS in the F segment.
  49.  
  50. AUTOEXEC.BAT:
  51.                     Files=20
  52.                     Buffers=30
  53.                     DEVICE=<network_card_driver_filename.SYS>   
  54.                     REM  If there is a Network Card driver 
  55.                     REM  it should go here
  56.                     ALLOAD NC
  57.                     ALLOAD NX
  58.                     ALLOAD SHARE
  59.                     ALLOAD NR
  60.                     ALLOAD NS
  61.                     ALLOAD UBRIDGE
  62.                     ALLOAD BRIDGE
  63.  
  64. You should use a combination of EXAMEM (to examine where software
  65. is located in your memory) and ALLOAD <cr> to look for free
  66. spaces in high memory to load your network programs. To precisely
  67. position your software, you should use the ALLOAD /<parameters>.
  68. The Network cards ROM & RAM areas should be excluded using the
  69. X= (exclude) parameter following ALLEMM4.SYS in the CONFIG.SYS
  70. file. Ideally the ROM & RAM areas should be set as low as
  71. possible or as high as possible in high memory to give the
  72. largest area of contiguous DOS space.
  73.